2025-04-02 03:01:55,985 [ 156161 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:53, check_args_and_update_paths) 2025-04-02 03:01:55,985 [ 156161 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:97, check_args_and_update_paths) 2025-04-02 03:01:55,986 [ 156161 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:108, check_args_and_update_paths) 2025-04-02 03:01:55,986 [ 156161 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:110, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_cgb3e9 --privileged --dns-search='.' --memory=30709035008 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-odbc-bridge:/clickhouse-odbc-bridge --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-library-bridge:/clickhouse-library-bridge --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=8b2301119731 -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=caad4729259e -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS=" -rfEps --run-id=1 --color=no --durations=0 test_backup_restore_on_cluster/test_different_versions.py::test_different_versions 'test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk]' 'test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume]' -vvv -ss" altinityinfra/integration-tests-runner:2165613c5fcd '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket= rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: timeout-2.3.1, repeat-0.9.3, order-1.0.0, reportlog-0.4.0, xdist-3.5.0, random-order-1.1.1 timeout: 900.0s timeout method: signal timeout func_only: False collecting ... collected 3 items test_backup_restore_on_cluster/test_different_versions.py::test_different_versions Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Using old_node as initiator for BACKUP Using new_node as initiator for RESTORE FAILED test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk] Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml FAILED test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume] FAILED =================================== FAILURES =================================== ___________________________ test_different_versions ____________________________ def test_different_versions(): new_node.query( "CREATE TABLE tbl" " ON CLUSTER 'cluster_ver'" " (x UInt64) ENGINE=ReplicatedMergeTree('/clickhouse/tables/tbl/', '{replica}')" " ORDER BY tuple()" ) new_node.query(f"INSERT INTO tbl VALUES (1)") old_node.query(f"INSERT INTO tbl VALUES (2)") backup_name = new_backup_name() initiator = random_node() print(f"Using {get_node_name(initiator)} as initiator for BACKUP") initiator.query(f"BACKUP TABLE tbl ON CLUSTER 'cluster_ver' TO {backup_name}") new_node.query("DROP TABLE tbl ON CLUSTER 'cluster_ver' SYNC") initiator = random_node() print(f"Using {get_node_name(initiator)} as initiator for RESTORE") initiator.query(f"RESTORE TABLE tbl ON CLUSTER 'cluster_ver' FROM {backup_name}") new_node.query("SYSTEM SYNC REPLICA ON CLUSTER 'cluster_ver' tbl") assert new_node.query("SELECT * FROM tbl ORDER BY x") == TSV([1, 2]) assert old_node.query("SELECT * FROM tbl ORDER BY x") == TSV([1, 2]) # Error NO_ELEMENTS_IN_CONFIG is unrelated. > assert ( new_node.query( "SELECT name, last_error_message FROM system.errors WHERE NOT (" "(name == 'NO_ELEMENTS_IN_CONFIG')" ")" ) == "" ) E assert "NETLINK_ERROR\tCan\\'t receive Netlink response: error -2\n" == '' E + NETLINK_ERROR Can\'t receive Netlink response: error -2 test_backup_restore_on_cluster/test_different_versions.py:105: AssertionError ------------------------------ Captured log setup ------------------------------ 2025-04-02 03:02:00 [ 623 ] DEBUG : Command:[docker ps | wc -l] (cluster.py:120, run_and_check) 2025-04-02 03:02:00 [ 623 ] DEBUG : Stdout:1 (cluster.py:144, run_and_check) 2025-04-02 03:02:00 [ 623 ] DEBUG : No running containers (conftest.py:95, cleanup_environment) 2025-04-02 03:02:00 [ 623 ] DEBUG : Pruning Docker networks (conftest.py:97, cleanup_environment) 2025-04-02 03:02:00 [ 623 ] DEBUG : Command:[docker network prune --force] (cluster.py:120, run_and_check) 2025-04-02 03:02:00 [ 623 ] DEBUG : Command:[sysctl net.ipv4.ip_local_port_range='55000 65535'] (cluster.py:120, run_and_check) 2025-04-02 03:02:00 [ 623 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:144, run_and_check) 2025-04-02 03:02:00 [ 623 ] INFO : Running tests in /ClickHouse/tests/integration/test_backup_restore_on_cluster/test_different_versions.py (cluster.py:2677, start) 2025-04-02 03:02:00 [ 623 ] DEBUG : Cluster start called. is_up=False (cluster.py:2684, start) 2025-04-02 03:02:00 [ 623 ] DEBUG : Docker networks for project roottestbackuprestoreonclusterdifferentversions are NETWORK ID NAME DRIVER SCOPE (cluster.py:855, print_all_docker_pieces) 2025-04-02 03:02:00 [ 623 ] DEBUG : Docker containers for project roottestbackuprestoreonclusterdifferentversions are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:863, print_all_docker_pieces) 2025-04-02 03:02:00 [ 623 ] DEBUG : Docker volumes for project roottestbackuprestoreonclusterdifferentversions are DRIVER VOLUME NAME (cluster.py:871, print_all_docker_pieces) 2025-04-02 03:02:00 [ 623 ] DEBUG : Cleanup called (cluster.py:876, cleanup) 2025-04-02 03:02:00 [ 623 ] DEBUG : Docker networks for project roottestbackuprestoreonclusterdifferentversions are NETWORK ID NAME DRIVER SCOPE (cluster.py:855, print_all_docker_pieces) 2025-04-02 03:02:00 [ 623 ] DEBUG : Docker containers for project roottestbackuprestoreonclusterdifferentversions are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:863, print_all_docker_pieces) 2025-04-02 03:02:00 [ 623 ] DEBUG : Docker volumes for project roottestbackuprestoreonclusterdifferentversions are DRIVER VOLUME NAME (cluster.py:871, print_all_docker_pieces) 2025-04-02 03:02:00 [ 623 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclusterdifferentversions-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:120, run_and_check) 2025-04-02 03:02:00 [ 623 ] DEBUG : Unstopped containers: {} (cluster.py:890, cleanup) 2025-04-02 03:02:00 [ 623 ] DEBUG : No running containers for project: roottestbackuprestoreonclusterdifferentversions (cluster.py:904, cleanup) 2025-04-02 03:02:00 [ 623 ] DEBUG : Trying to prune unused networks... (cluster.py:910, cleanup) 2025-04-02 03:02:00 [ 623 ] DEBUG : Trying to prune unused images... (cluster.py:926, cleanup) 2025-04-02 03:02:00 [ 623 ] DEBUG : Command:[docker image prune -f] (cluster.py:120, run_and_check) 2025-04-02 03:02:00 [ 623 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:144, run_and_check) 2025-04-02 03:02:00 [ 623 ] DEBUG : Images pruned (cluster.py:929, cleanup) 2025-04-02 03:02:00 [ 623 ] DEBUG : Trying to prune unused volumes... (cluster.py:935, cleanup) 2025-04-02 03:02:00 [ 623 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:120, run_and_check) 2025-04-02 03:02:00 [ 623 ] DEBUG : Stdout:1 (cluster.py:144, run_and_check) 2025-04-02 03:02:00 [ 623 ] DEBUG : Volumes pruned: 1 (cluster.py:940, cleanup) 2025-04-02 03:02:00 [ 623 ] DEBUG : Setup directory for instance: new_node (cluster.py:2697, start) 2025-04-02 03:02:00 [ 623 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4530, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Create directory for common tests configuration (cluster.py:4535, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Copy common configuration from helpers (cluster.py:4555, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Generate and write macros file (cluster.py:4607, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster_different_versions.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/new_node/configs/config.d (cluster.py:4643, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/new_node/database (cluster.py:4660, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/new_node/logs (cluster.py:4671, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Entrypoint cmd: ["clickhouse", "server", "--config-file=/etc/clickhouse-server/config.xml", "--log-file=/var/log/clickhouse-server/clickhouse-server.log", "--errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log", "--"] (cluster.py:4752, create_dir) 2025-04-02 03:02:00 [ 623 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/backups (cluster.py:4799, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Setup directory for instance: old_node (cluster.py:2697, start) 2025-04-02 03:02:00 [ 623 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4530, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Create directory for common tests configuration (cluster.py:4535, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Copy common configuration from helpers (cluster.py:4555, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Generate and write macros file (cluster.py:4607, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster_different_versions.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/old_node/configs/config.d (cluster.py:4643, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/old_node/database (cluster.py:4660, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/old_node/logs (cluster.py:4671, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Entrypoint cmd: ["clickhouse", "server", "--config-file=/etc/clickhouse-server/config.xml", "--log-file=/var/log/clickhouse-server/clickhouse-server.log", "--errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log", "--"] (cluster.py:4752, create_dir) 2025-04-02 03:02:00 [ 623 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/backups (cluster.py:4799, create_dir) 2025-04-02 03:02:00 [ 623 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw', 'keeper_binary': '/clickhouse', 'keeper_cmd_prefix': 'clickhouse keeper', 'image': 'altinityinfra/integration-test:8b2301119731', 'user': '0', 'keeper_fs': 'bind', 'keeper_logs_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper1/log', 'keeper_config_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper1/config', 'keeper_db_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper1/coordination', 'keeper_logs_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper2/log', 'keeper_config_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper2/config', 'keeper_db_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper2/coordination', 'keeper_logs_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper3/log', 'keeper_config_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper3/config', 'keeper_db_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper3/coordination'} stored in /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/.env (cluster.py:95, _create_env_file) 2025-04-02 03:02:00 [ 623 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-04-02 03:02:00 [ 623 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-04-02 03:02:00 [ 623 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-04-02 03:02:00 [ 623 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-04-02 03:02:00 [ 623 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2025-04-02 03:02:00 [ 623 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/.env --project-name roottestbackuprestoreonclusterdifferentversions --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/old_node/docker-compose.yml pull] (cluster.py:120, run_and_check) 2025-04-02 03:02:11 [ 623 ] DEBUG : Stderr: zoo1 Skipped - Image is already being pulled by zoo3 (cluster.py:146, run_and_check) 2025-04-02 03:02:11 [ 623 ] DEBUG : Stderr: new_node Skipped - Image is already being pulled by zoo3 (cluster.py:146, run_and_check) 2025-04-02 03:02:11 [ 623 ] DEBUG : Stderr: zoo2 Skipped - Image is already being pulled by zoo3 (cluster.py:146, run_and_check) 2025-04-02 03:02:11 [ 623 ] DEBUG : Stderr: old_node Pulling (cluster.py:146, run_and_check) 2025-04-02 03:02:11 [ 623 ] DEBUG : Stderr: zoo3 Pulling (cluster.py:146, run_and_check) 2025-04-02 03:02:11 [ 623 ] DEBUG : Stderr: old_node Pulled (cluster.py:146, run_and_check) 2025-04-02 03:02:11 [ 623 ] DEBUG : Stderr: zoo3 Pulled (cluster.py:146, run_and_check) 2025-04-02 03:02:11 [ 623 ] DEBUG : Setup ZooKeeper (cluster.py:2738, start) 2025-04-02 03:02:11 [ 623 ] DEBUG : Creating internal ZooKeeper dirs: ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper1/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper1/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper1/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper2/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper2/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper2/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper3/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper3/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/keeper3/coordination'] (cluster.py:2739, start) 2025-04-02 03:02:11 [ 623 ] DEBUG : Command:[docker compose --project-name roottestbackuprestoreonclusterdifferentversions --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/.env --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --verbose up -d] (cluster.py:120, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr:time="2025-04-02T03:02:11Z" level=trace msg="Docker Desktop integration not enabled" (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Network roottestbackuprestoreonclusterdifferentversions_default Creating (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Network roottestbackuprestoreonclusterdifferentversions_default Created (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo3-1 Creating (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo1-1 Creating (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo2-1 Creating (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo2-1 Created (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo3-1 Created (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo1-1 Created (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo2-1 Starting (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo3-1 Starting (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo1-1 Starting (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo2-1 Started (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo1-1 Started (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo3-1 Started (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr:time="2025-04-02T03:02:12Z" level=debug msg="otel error" error="" (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Stderr:time="2025-04-02T03:02:12Z" level=debug msg="otel error" error="" (cluster.py:146, run_and_check) 2025-04-02 03:02:12 [ 623 ] DEBUG : Wait ZooKeeper to start (cluster.py:2403, wait_zookeeper_to_start) 2025-04-02 03:02:12 [ 623 ] DEBUG : get_instance_ip instance_name=zoo1 (cluster.py:2004, get_instance_ip) 2025-04-02 03:02:12 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-zoo1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:12 [ 623 ] DEBUG : get_kazoo_client: zoo1, ip:172.16.1.4, port:2181, use_ssl:False (cluster.py:3223, get_kazoo_client) 2025-04-02 03:02:12 [ 623 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2025-04-02 03:02:12 [ 623 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-04-02 03:02:12 [ 623 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2025-04-02 03:02:12 [ 623 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-04-02 03:02:12 [ 623 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2025-04-02 03:02:12 [ 623 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-04-02 03:02:12 [ 623 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2025-04-02 03:02:12 [ 623 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-04-02 03:02:13 [ 623 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2025-04-02 03:02:13 [ 623 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-04-02 03:02:14 [ 623 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2025-04-02 03:02:14 [ 623 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-04-02 03:02:17 [ 623 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2025-04-02 03:02:17 [ 623 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-04-02 03:02:17 [ 623 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-04-02 03:02:17 [ 623 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-04-02 03:02:17 [ 623 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-04-02 03:02:17 [ 623 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-04-02 03:02:17 [ 623 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-04-02 03:02:17 [ 623 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-04-02 03:02:17 [ 623 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-04-02 03:02:17 [ 623 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-04-02 03:02:17 [ 623 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-04-02 03:02:17 [ 623 ] DEBUG : get_instance_ip instance_name=zoo2 (cluster.py:2004, get_instance_ip) 2025-04-02 03:02:17 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-zoo2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:17 [ 623 ] DEBUG : get_kazoo_client: zoo2, ip:172.16.1.2, port:2181, use_ssl:False (cluster.py:3223, get_kazoo_client) 2025-04-02 03:02:17 [ 623 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2025-04-02 03:02:17 [ 623 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-04-02 03:02:17 [ 623 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-04-02 03:02:17 [ 623 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-04-02 03:02:17 [ 623 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-04-02 03:02:17 [ 623 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-04-02 03:02:17 [ 623 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-04-02 03:02:17 [ 623 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-04-02 03:02:17 [ 623 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-04-02 03:02:17 [ 623 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-04-02 03:02:17 [ 623 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-04-02 03:02:17 [ 623 ] DEBUG : get_instance_ip instance_name=zoo3 (cluster.py:2004, get_instance_ip) 2025-04-02 03:02:17 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-zoo3-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:17 [ 623 ] DEBUG : get_kazoo_client: zoo3, ip:172.16.1.3, port:2181, use_ssl:False (cluster.py:3223, get_kazoo_client) 2025-04-02 03:02:17 [ 623 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2025-04-02 03:02:17 [ 623 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-04-02 03:02:17 [ 623 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-04-02 03:02:17 [ 623 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-04-02 03:02:17 [ 623 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-04-02 03:02:17 [ 623 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-04-02 03:02:17 [ 623 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-04-02 03:02:17 [ 623 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-04-02 03:02:17 [ 623 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-04-02 03:02:17 [ 623 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-04-02 03:02:17 [ 623 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-04-02 03:02:17 [ 623 ] DEBUG : All instances of ZooKeeper started: ('zoo1', 'zoo2', 'zoo3') (cluster.py:2419, wait_zookeeper_nodes_to_start) 2025-04-02 03:02:17 [ 623 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/.env --project-name roottestbackuprestoreonclusterdifferentversions --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/old_node/docker-compose.yml up -d --no-recreate') (cluster.py:3066, start) 2025-04-02 03:02:17 [ 623 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/.env --project-name roottestbackuprestoreonclusterdifferentversions --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/old_node/docker-compose.yml up -d --no-recreate] (cluster.py:120, run_and_check) 2025-04-02 03:02:17 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo2-1 Running (cluster.py:146, run_and_check) 2025-04-02 03:02:17 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo3-1 Running (cluster.py:146, run_and_check) 2025-04-02 03:02:17 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo1-1 Running (cluster.py:146, run_and_check) 2025-04-02 03:02:17 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-new_node-1 Creating (cluster.py:146, run_and_check) 2025-04-02 03:02:17 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-old_node-1 Creating (cluster.py:146, run_and_check) 2025-04-02 03:02:17 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-new_node-1 Created (cluster.py:146, run_and_check) 2025-04-02 03:02:17 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-old_node-1 Created (cluster.py:146, run_and_check) 2025-04-02 03:02:17 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-new_node-1 Starting (cluster.py:146, run_and_check) 2025-04-02 03:02:17 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-old_node-1 Starting (cluster.py:146, run_and_check) 2025-04-02 03:02:17 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-old_node-1 Started (cluster.py:146, run_and_check) 2025-04-02 03:02:17 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-new_node-1 Started (cluster.py:146, run_and_check) 2025-04-02 03:02:17 [ 623 ] DEBUG : ClickHouse instance created (cluster.py:3074, start) 2025-04-02 03:02:17 [ 623 ] DEBUG : get_instance_ip instance_name=new_node (cluster.py:2004, get_instance_ip) 2025-04-02 03:02:17 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-new_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:17 [ 623 ] DEBUG : get_instance_ip instance_name=new_node (cluster.py:2014, get_instance_global_ipv6) 2025-04-02 03:02:17 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-new_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:17 [ 623 ] DEBUG : Waiting for ClickHouse start in new_node, ip: 172.16.1.6... (cluster.py:3082, start) 2025-04-02 03:02:17 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-new_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:17 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:17 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:17 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:18 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:18 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:18 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:18 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:18 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:18 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:18 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:18 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:18 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/c30f99304e6a075b9c06be0d713e91d7ff9948a4fea8787b71816623cb34bf2d/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : ClickHouse new_node started (cluster.py:3086, start) 2025-04-02 03:02:19 [ 623 ] DEBUG : get_instance_ip instance_name=old_node (cluster.py:2004, get_instance_ip) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-old_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : get_instance_ip instance_name=old_node (cluster.py:2014, get_instance_global_ipv6) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-old_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : Waiting for ClickHouse start in old_node, ip: 172.16.1.5... (cluster.py:3082, start) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-old_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/b2494f545a1305c76ec586a4cdc33824b2ff97edcb589b603ac9563b34be49f2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:19 [ 623 ] DEBUG : ClickHouse old_node started (cluster.py:3086, start) ------------------------------ Captured log call ------------------------------- 2025-04-02 03:02:19 [ 623 ] DEBUG : Executing query CREATE TABLE tbl ON CLUSTER 'cluster_ver' (x UInt64) ENGINE=ReplicatedMergeTree('/clickhouse/tables/tbl/', '{replica}') ORDER BY tuple() on new_node (cluster.py:3564, query) 2025-04-02 03:02:20 [ 623 ] DEBUG : Executing query INSERT INTO tbl VALUES (1) on new_node (cluster.py:3564, query) 2025-04-02 03:02:20 [ 623 ] DEBUG : Executing query INSERT INTO tbl VALUES (2) on old_node (cluster.py:3564, query) 2025-04-02 03:02:20 [ 623 ] DEBUG : Executing query BACKUP TABLE tbl ON CLUSTER 'cluster_ver' TO Disk('backups', '1') on old_node (cluster.py:3564, query) 2025-04-02 03:02:21 [ 623 ] DEBUG : Executing query DROP TABLE tbl ON CLUSTER 'cluster_ver' SYNC on new_node (cluster.py:3564, query) 2025-04-02 03:02:21 [ 623 ] DEBUG : Executing query RESTORE TABLE tbl ON CLUSTER 'cluster_ver' FROM Disk('backups', '1') on new_node (cluster.py:3564, query) 2025-04-02 03:02:22 [ 623 ] DEBUG : Executing query SYSTEM SYNC REPLICA ON CLUSTER 'cluster_ver' tbl on new_node (cluster.py:3564, query) 2025-04-02 03:02:22 [ 623 ] DEBUG : Executing query SELECT * FROM tbl ORDER BY x on new_node (cluster.py:3564, query) 2025-04-02 03:02:22 [ 623 ] DEBUG : Executing query SELECT * FROM tbl ORDER BY x on old_node (cluster.py:3564, query) 2025-04-02 03:02:23 [ 623 ] DEBUG : Executing query SELECT name, last_error_message FROM system.errors WHERE NOT ((name == 'NO_ELEMENTS_IN_CONFIG')) on new_node (cluster.py:3564, query) ---------------------------- Captured log teardown ----------------------------- 2025-04-02 03:02:23 [ 623 ] DEBUG : Executing query DROP TABLE IF EXISTS tbl ON CLUSTER 'cluster_ver' SYNC on new_node (cluster.py:3564, query) 2025-04-02 03:02:23 [ 623 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/.env --project-name roottestbackuprestoreonclusterdifferentversions --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/old_node/docker-compose.yml stop --timeout 20] (cluster.py:120, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-new_node-1 Stopping (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-old_node-1 Stopping (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-old_node-1 Stopped (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-new_node-1 Stopped (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo3-1 Stopping (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo1-1 Stopping (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo2-1 Stopping (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo1-1 Stopped (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo2-1 Stopped (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo3-1 Stopped (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/new_node/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/new_node/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:120, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/old_node/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/old_node/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:120, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/.env --project-name roottestbackuprestoreonclusterdifferentversions --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1/old_node/docker-compose.yml down --volumes] (cluster.py:120, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-new_node-1 Stopping (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-old_node-1 Stopping (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-new_node-1 Stopped (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-new_node-1 Removing (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-old_node-1 Stopped (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-old_node-1 Removing (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-old_node-1 Removed (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-new_node-1 Removed (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo2-1 Stopping (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo3-1 Stopping (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo1-1 Stopping (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo1-1 Stopped (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo1-1 Removing (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo2-1 Stopped (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo2-1 Removing (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo3-1 Stopped (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo3-1 Removing (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo1-1 Removed (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo2-1 Removed (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-zoo3-1 Removed (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Network roottestbackuprestoreonclusterdifferentversions_default Removing (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stderr: Network roottestbackuprestoreonclusterdifferentversions_default Removed (cluster.py:146, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Cleanup called (cluster.py:876, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : Docker networks for project roottestbackuprestoreonclusterdifferentversions are NETWORK ID NAME DRIVER SCOPE (cluster.py:855, print_all_docker_pieces) 2025-04-02 03:02:32 [ 623 ] DEBUG : Docker containers for project roottestbackuprestoreonclusterdifferentversions are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:863, print_all_docker_pieces) 2025-04-02 03:02:32 [ 623 ] DEBUG : Docker volumes for project roottestbackuprestoreonclusterdifferentversions are DRIVER VOLUME NAME (cluster.py:871, print_all_docker_pieces) 2025-04-02 03:02:32 [ 623 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclusterdifferentversions-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:120, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Unstopped containers: {} (cluster.py:890, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : No running containers for project: roottestbackuprestoreonclusterdifferentversions (cluster.py:904, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : Trying to prune unused networks... (cluster.py:910, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : Trying to prune unused images... (cluster.py:926, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : Command:[docker image prune -f] (cluster.py:120, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:144, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Images pruned (cluster.py:929, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : Trying to prune unused volumes... (cluster.py:935, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:120, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stdout:1 (cluster.py:144, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Volumes pruned: 1 (cluster.py:940, cleanup) ____________________ test_cow_policy[cow_policy_multi_disk] ____________________ start_cluster = storage_policy = 'cow_policy_multi_disk' @pytest.mark.parametrize("storage_policy", ["cow_policy_multi_disk", "cow_policy_multi_volume"]) def test_cow_policy(start_cluster, storage_policy): try: > node.query_with_retry( f""" ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = '{storage_policy}' """ ) test_cow_policy/test.py:24: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helpers/cluster.py:3600: in query_with_retry result = self.query( helpers/cluster.py:3565: in query return self.client.query( helpers/client.py:39: in wrap return func(self, *args, **kwargs) helpers/client.py:79: in query ).get_answer() helpers/client.py:230: in get_answer self.process.wait(timeout=DEFAULT_QUERY_TIMEOUT) /usr/lib/python3.10/subprocess.py:1209: in wait return self._wait(timeout=timeout) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = timeout = 600 def _wait(self, timeout): """Internal implementation of wait() on POSIX.""" if self.returncode is not None: return self.returncode if timeout is not None: endtime = _time() + timeout # Enter a busy loop if we have a timeout. This busy loop was # cribbed from Lib/threading.py in Thread.wait() at r71065. delay = 0.0005 # 500 us -> initial delay of 1 ms while True: if self._waitpid_lock.acquire(False): try: if self.returncode is not None: break # Another thread waited. (pid, sts) = self._try_wait(os.WNOHANG) assert pid == self.pid or pid == 0 if pid == self.pid: self._handle_exitstatus(sts) break finally: self._waitpid_lock.release() remaining = self._remaining_time(endtime) if remaining <= 0: raise TimeoutExpired(self.args, timeout) delay = min(delay * 2, remaining, .05) > time.sleep(delay) E Failed: Timeout >900.0s /usr/lib/python3.10/subprocess.py:1953: Failed ------------------------------ Captured log setup ------------------------------ 2025-04-02 03:02:32 [ 623 ] INFO : Running tests in /ClickHouse/tests/integration/test_cow_policy/test.py (cluster.py:2677, start) 2025-04-02 03:02:32 [ 623 ] DEBUG : Cluster start called. is_up=False (cluster.py:2684, start) 2025-04-02 03:02:32 [ 623 ] DEBUG : Docker networks for project roottestcowpolicy are NETWORK ID NAME DRIVER SCOPE (cluster.py:855, print_all_docker_pieces) 2025-04-02 03:02:32 [ 623 ] DEBUG : Docker containers for project roottestcowpolicy are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:863, print_all_docker_pieces) 2025-04-02 03:02:32 [ 623 ] DEBUG : Docker volumes for project roottestcowpolicy are DRIVER VOLUME NAME (cluster.py:871, print_all_docker_pieces) 2025-04-02 03:02:32 [ 623 ] DEBUG : Cleanup called (cluster.py:876, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : Docker networks for project roottestcowpolicy are NETWORK ID NAME DRIVER SCOPE (cluster.py:855, print_all_docker_pieces) 2025-04-02 03:02:32 [ 623 ] DEBUG : Docker containers for project roottestcowpolicy are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:863, print_all_docker_pieces) 2025-04-02 03:02:32 [ 623 ] DEBUG : Docker volumes for project roottestcowpolicy are DRIVER VOLUME NAME (cluster.py:871, print_all_docker_pieces) 2025-04-02 03:02:32 [ 623 ] DEBUG : Command:[docker container list --all --filter name='^/roottestcowpolicy-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:120, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Unstopped containers: {} (cluster.py:890, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : No running containers for project: roottestcowpolicy (cluster.py:904, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : Trying to prune unused networks... (cluster.py:910, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : Trying to prune unused images... (cluster.py:926, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : Command:[docker image prune -f] (cluster.py:120, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:144, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Images pruned (cluster.py:929, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : Trying to prune unused volumes... (cluster.py:935, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:120, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Stdout:1 (cluster.py:144, run_and_check) 2025-04-02 03:02:32 [ 623 ] DEBUG : Volumes pruned: 1 (cluster.py:940, cleanup) 2025-04-02 03:02:32 [ 623 ] DEBUG : Setup directory for instance: node (cluster.py:2697, start) 2025-04-02 03:02:32 [ 623 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4530, create_dir) 2025-04-02 03:02:32 [ 623 ] DEBUG : Create directory for common tests configuration (cluster.py:4535, create_dir) 2025-04-02 03:02:32 [ 623 ] DEBUG : Copy common configuration from helpers (cluster.py:4555, create_dir) 2025-04-02 03:02:32 [ 623 ] DEBUG : Generate and write macros file (cluster.py:4607, create_dir) 2025-04-02 03:02:32 [ 623 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_cow_policy/configs/overrides.yaml'] to /ClickHouse/tests/integration/test_cow_policy/_instances-1/node/configs/config.d (cluster.py:4643, create_dir) 2025-04-02 03:02:32 [ 623 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_cow_policy/_instances-1/node/database (cluster.py:4660, create_dir) 2025-04-02 03:02:32 [ 623 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_cow_policy/_instances-1/node/logs (cluster.py:4671, create_dir) 2025-04-02 03:02:32 [ 623 ] DEBUG : Entrypoint cmd: ["clickhouse", "server", "--config-file=/etc/clickhouse-server/config.xml", "--log-file=/var/log/clickhouse-server/clickhouse-server.log", "--errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log", "--"] (cluster.py:4752, create_dir) 2025-04-02 03:02:32 [ 623 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw'} stored in /ClickHouse/tests/integration/test_cow_policy/_instances-1/.env (cluster.py:95, _create_env_file) 2025-04-02 03:02:32 [ 623 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-04-02 03:02:32 [ 623 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-04-02 03:02:32 [ 623 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-04-02 03:02:32 [ 623 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-04-02 03:02:32 [ 623 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2025-04-02 03:02:32 [ 623 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_cow_policy/_instances-1/.env --project-name roottestcowpolicy --file /ClickHouse/tests/integration/test_cow_policy/_instances-1/node/docker-compose.yml pull] (cluster.py:120, run_and_check) 2025-04-02 03:02:43 [ 623 ] DEBUG : Stderr: node Pulling (cluster.py:146, run_and_check) 2025-04-02 03:02:43 [ 623 ] DEBUG : Stderr: node Pulled (cluster.py:146, run_and_check) 2025-04-02 03:02:43 [ 623 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_cow_policy/_instances-1/.env --project-name roottestcowpolicy --file /ClickHouse/tests/integration/test_cow_policy/_instances-1/node/docker-compose.yml up -d --no-recreate') (cluster.py:3066, start) 2025-04-02 03:02:43 [ 623 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_cow_policy/_instances-1/.env --project-name roottestcowpolicy --file /ClickHouse/tests/integration/test_cow_policy/_instances-1/node/docker-compose.yml up -d --no-recreate] (cluster.py:120, run_and_check) 2025-04-02 03:02:43 [ 623 ] DEBUG : Stderr: Network roottestcowpolicy_default Creating (cluster.py:146, run_and_check) 2025-04-02 03:02:43 [ 623 ] DEBUG : Stderr: Network roottestcowpolicy_default Created (cluster.py:146, run_and_check) 2025-04-02 03:02:43 [ 623 ] DEBUG : Stderr: Container roottestcowpolicy-node-1 Creating (cluster.py:146, run_and_check) 2025-04-02 03:02:43 [ 623 ] DEBUG : Stderr: Container roottestcowpolicy-node-1 Created (cluster.py:146, run_and_check) 2025-04-02 03:02:43 [ 623 ] DEBUG : Stderr: Container roottestcowpolicy-node-1 Starting (cluster.py:146, run_and_check) 2025-04-02 03:02:43 [ 623 ] DEBUG : Stderr: Container roottestcowpolicy-node-1 Started (cluster.py:146, run_and_check) 2025-04-02 03:02:43 [ 623 ] DEBUG : ClickHouse instance created (cluster.py:3074, start) 2025-04-02 03:02:43 [ 623 ] DEBUG : get_instance_ip instance_name=node (cluster.py:2004, get_instance_ip) 2025-04-02 03:02:43 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestcowpolicy-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:43 [ 623 ] DEBUG : get_instance_ip instance_name=node (cluster.py:2014, get_instance_global_ipv6) 2025-04-02 03:02:43 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestcowpolicy-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:43 [ 623 ] DEBUG : Waiting for ClickHouse start in node, ip: 172.16.1.2... (cluster.py:3082, start) 2025-04-02 03:02:43 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestcowpolicy-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:43 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:44 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:44 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:44 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:44 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:44 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:44 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:44 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:44 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:44 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:44 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:45 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:45 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:45 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:45 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:45 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:45 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:45 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:45 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:45 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:45 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:46 [ 623 ] DEBUG : http://localhost:None "GET /v1.46/containers/df68c51cce3f17bee246a5a043f756ca0a301da717ed152ac4507c3a1d8a6eac/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-04-02 03:02:46 [ 623 ] DEBUG : ClickHouse node started (cluster.py:3086, start) ------------------------------ Captured log call ------------------------------- 2025-04-02 03:02:46 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:03:40 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:04:34 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:05:29 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:06:26 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:07:24 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:08:19 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:09:14 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:10:11 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:11:09 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:12:03 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:12:59 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:13:56 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:14:54 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:15:48 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:16:43 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3564, query) 2025-04-02 03:17:32 [ 623 ] DEBUG : Executing query DROP TABLE IF EXISTS uk_price_paid SYNC on node (cluster.py:3564, query) ___________________ test_cow_policy[cow_policy_multi_volume] ___________________ start_cluster = storage_policy = 'cow_policy_multi_volume' @pytest.mark.parametrize("storage_policy", ["cow_policy_multi_disk", "cow_policy_multi_volume"]) def test_cow_policy(start_cluster, storage_policy): try: > node.query_with_retry( f""" ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = '{storage_policy}' """ ) test_cow_policy/test.py:24: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helpers/cluster.py:3600: in query_with_retry result = self.query( helpers/cluster.py:3565: in query return self.client.query( helpers/client.py:39: in wrap return func(self, *args, **kwargs) helpers/client.py:79: in query ).get_answer() helpers/client.py:230: in get_answer self.process.wait(timeout=DEFAULT_QUERY_TIMEOUT) /usr/lib/python3.10/subprocess.py:1209: in wait return self._wait(timeout=timeout) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = timeout = 600 def _wait(self, timeout): """Internal implementation of wait() on POSIX.""" if self.returncode is not None: return self.returncode if timeout is not None: endtime = _time() + timeout # Enter a busy loop if we have a timeout. This busy loop was # cribbed from Lib/threading.py in Thread.wait() at r71065. delay = 0.0005 # 500 us -> initial delay of 1 ms while True: if self._waitpid_lock.acquire(False): try: if self.returncode is not None: break # Another thread waited. (pid, sts) = self._try_wait(os.WNOHANG) assert pid == self.pid or pid == 0 if pid == self.pid: self._handle_exitstatus(sts) break finally: self._waitpid_lock.release() remaining = self._remaining_time(endtime) if remaining <= 0: raise TimeoutExpired(self.args, timeout) delay = min(delay * 2, remaining, .05) > time.sleep(delay) E Failed: Timeout >900.0s /usr/lib/python3.10/subprocess.py:1953: Failed ------------------------------ Captured log call ------------------------------- 2025-04-02 03:17:40 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:18:38 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:19:33 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:20:28 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:21:25 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:22:23 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:23:17 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:24:12 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:25:10 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:26:07 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:27:02 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:27:57 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:28:54 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:29:52 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:30:47 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:31:42 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:32:39 [ 623 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3564, query) 2025-04-02 03:32:40 [ 623 ] DEBUG : Executing query DROP TABLE IF EXISTS uk_price_paid SYNC on node (cluster.py:3564, query) ---------------------------- Captured log teardown ----------------------------- 2025-04-02 03:33:36 [ 623 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_cow_policy/_instances-1/.env --project-name roottestcowpolicy --file /ClickHouse/tests/integration/test_cow_policy/_instances-1/node/docker-compose.yml stop --timeout 20] (cluster.py:120, run_and_check) 2025-04-02 03:33:43 [ 623 ] DEBUG : Stderr: Container roottestcowpolicy-node-1 Stopping (cluster.py:146, run_and_check) 2025-04-02 03:33:43 [ 623 ] DEBUG : Stderr: Container roottestcowpolicy-node-1 Stopped (cluster.py:146, run_and_check) 2025-04-02 03:33:43 [ 623 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_cow_policy/_instances-1/node/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_cow_policy/_instances-1/node/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:120, run_and_check) 2025-04-02 03:33:43 [ 623 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_cow_policy/_instances-1/.env --project-name roottestcowpolicy --file /ClickHouse/tests/integration/test_cow_policy/_instances-1/node/docker-compose.yml down --volumes] (cluster.py:120, run_and_check) 2025-04-02 03:33:43 [ 623 ] DEBUG : Stderr: Container roottestcowpolicy-node-1 Stopping (cluster.py:146, run_and_check) 2025-04-02 03:33:43 [ 623 ] DEBUG : Stderr: Container roottestcowpolicy-node-1 Stopped (cluster.py:146, run_and_check) 2025-04-02 03:33:43 [ 623 ] DEBUG : Stderr: Container roottestcowpolicy-node-1 Removing (cluster.py:146, run_and_check) 2025-04-02 03:33:43 [ 623 ] DEBUG : Stderr: Container roottestcowpolicy-node-1 Removed (cluster.py:146, run_and_check) 2025-04-02 03:33:43 [ 623 ] DEBUG : Stderr: Network roottestcowpolicy_default Removing (cluster.py:146, run_and_check) 2025-04-02 03:33:43 [ 623 ] DEBUG : Stderr: Network roottestcowpolicy_default Removed (cluster.py:146, run_and_check) 2025-04-02 03:33:43 [ 623 ] DEBUG : Cleanup called (cluster.py:876, cleanup) 2025-04-02 03:33:43 [ 623 ] DEBUG : Docker networks for project roottestcowpolicy are NETWORK ID NAME DRIVER SCOPE (cluster.py:855, print_all_docker_pieces) 2025-04-02 03:33:43 [ 623 ] DEBUG : Docker containers for project roottestcowpolicy are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:863, print_all_docker_pieces) 2025-04-02 03:33:44 [ 623 ] DEBUG : Docker volumes for project roottestcowpolicy are DRIVER VOLUME NAME (cluster.py:871, print_all_docker_pieces) 2025-04-02 03:33:44 [ 623 ] DEBUG : Command:[docker container list --all --filter name='^/roottestcowpolicy-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:120, run_and_check) 2025-04-02 03:33:44 [ 623 ] DEBUG : Unstopped containers: {} (cluster.py:890, cleanup) 2025-04-02 03:33:44 [ 623 ] DEBUG : No running containers for project: roottestcowpolicy (cluster.py:904, cleanup) 2025-04-02 03:33:44 [ 623 ] DEBUG : Trying to prune unused networks... (cluster.py:910, cleanup) 2025-04-02 03:33:44 [ 623 ] DEBUG : Trying to prune unused images... (cluster.py:926, cleanup) 2025-04-02 03:33:44 [ 623 ] DEBUG : Command:[docker image prune -f] (cluster.py:120, run_and_check) 2025-04-02 03:33:44 [ 623 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:144, run_and_check) 2025-04-02 03:33:44 [ 623 ] DEBUG : Images pruned (cluster.py:929, cleanup) 2025-04-02 03:33:44 [ 623 ] DEBUG : Trying to prune unused volumes... (cluster.py:935, cleanup) 2025-04-02 03:33:44 [ 623 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:120, run_and_check) 2025-04-02 03:33:44 [ 623 ] DEBUG : Stdout:1 (cluster.py:144, run_and_check) 2025-04-02 03:33:44 [ 623 ] DEBUG : Volumes pruned: 1 (cluster.py:940, cleanup) ============================== slowest durations =============================== 955.97s call test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume] 894.36s call test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk] 19.44s setup test_backup_restore_on_cluster/test_different_versions.py::test_different_versions 13.48s setup test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk] 9.09s teardown test_backup_restore_on_cluster/test_different_versions.py::test_different_versions 7.38s teardown test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume] 3.51s call test_backup_restore_on_cluster/test_different_versions.py::test_different_versions 0.00s teardown test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk] 0.00s setup test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume] =========================== short test summary info ============================ FAILED test_backup_restore_on_cluster/test_different_versions.py::test_different_versions FAILED test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk] - Fail... FAILED test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume] - Fa... ======================== 3 failed in 1903.59s (0:31:43) ======================== Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 528, in subprocess.check_call(cmd, shell=True, bufsize=0) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_cgb3e9 --privileged --dns-search='.' --memory=30709035008 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-odbc-bridge:/clickhouse-odbc-bridge --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-library-bridge:/clickhouse-library-bridge --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=8b2301119731 -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=caad4729259e -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS=" -rfEps --run-id=1 --color=no --durations=0 test_backup_restore_on_cluster/test_different_versions.py::test_different_versions 'test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk]' 'test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume]' -vvv -ss" altinityinfra/integration-tests-runner:2165613c5fcd ' returned non-zero exit status 1.